SoudTouch Android cmake编译

源码下载: https://gitlab.com/soundtouch/soundtouch, 源码下载之后里面有demo参考。
将下载的源码的includesource/SoundTouch目录的文件拷入

目录结构
目录结构

cmake

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
cmake_minimum_required(VERSION 3.4.1)

include_directories(src/main/cpp/soundtouch/include)
include_directories(src/main/cpp/soundtouch/SoundTouch)

add_library( # Sets the name of the library.
native-lib

# Sets the library as a shared library.
SHARED

# Provides a relative path to your source file(s).
src/main/cpp/native-lib.cpp
src/main/cpp/soundtouch/SoundTouch/AAFilter.cpp
src/main/cpp/soundtouch/SoundTouch/FIFOSampleBuffer.cpp
src/main/cpp/soundtouch/SoundTouch/FIRFilter.cpp
src/main/cpp/soundtouch/SoundTouch/cpu_detect_x86.cpp
src/main/cpp/soundtouch/SoundTouch/sse_optimized.cpp
src/main/cpp/soundtouch/SoundTouch/RateTransposer.cpp
src/main/cpp/soundtouch/SoundTouch/SoundTouch.cpp
src/main/cpp/soundtouch/SoundTouch/InterpolateCubic.cpp
src/main/cpp/soundtouch/SoundTouch/InterpolateLinear.cpp
src/main/cpp/soundtouch/SoundTouch/InterpolateShannon.cpp
src/main/cpp/soundtouch/SoundTouch/TDStretch.cpp
src/main/cpp/soundtouch/SoundTouch/PeakFinder.cpp
)


find_library( # Sets the name of the path variable.
log-lib

# Specifies the name of the NDK library that
# you want CMake to locate.
log )


target_link_libraries( # Specifies the target library.
native-lib

# Links the target library to the log library
# included in the NDK.
${log-lib} )

配置信息参考demo

-------------The End-------------